home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / lib / mathlib / libblas / test / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  840 b   |  44 lines

  1. #!smake
  2. #
  3. include ${ROOT}/usr/include/make/commondefs
  4.  
  5.  
  6. # For single-processor R3000 based systems
  7. # MPFLAG   = 
  8. # MIPS2    =
  9. # BLAS     = -lblas
  10.  
  11. # For multi-processor R3000 based systems
  12. # MPFLAG   = -mp
  13. # MIPS2    =
  14. # BLAS     = -lblas_mp
  15.  
  16. # For single-processor R4000 based systems
  17.  MPFLAG   = 
  18.  MIPS2    = -mips2
  19.  BLAS     = /usr/lib/mips2/libblas.a
  20.  
  21. # For multi-processor R4000 based systems
  22. # MPFLAG   = -mp
  23. # MIPS2    = -mips2
  24. # BLAS     = /usr/lib/mips2/libblas_mp.a
  25.  
  26. OPTS     = -O -Olimit 1000 -c $(MIPS2)
  27. LOADOPTS = $(MIPS2) $(MPFLAG)
  28.  
  29.  
  30. TARGETS    = blat2 blat3
  31. LDIRT   = xblat2? xblat3? *.SUMM
  32.  
  33. default all: ${TARGETS} 
  34.         RUNTEST
  35.  
  36. include ${COMMONRULES}
  37.  
  38. blat2: $(BLAS)
  39.     make -f makeblat2 "OPTS=$(OPTS)" "LOADOPTS=$(LOADOPTS)" "BLAS=$(BLAS)"
  40.  
  41. blat3: $(BLAS)
  42.     make -f makeblat3 "OPTS=$(OPTS)" "LOADOPTS=$(LOADOPTS)" "BLAS=$(BLAS)"
  43.  
  44.